Carbon


SCModalHookProcPtr

Header: QuickTimeComponents.h Carbon status: Supported

typedef SInt16(* SCModalHookProcPtr) (
    DialogRef theDialog, 
    SInt16 itemHit, 
    void *params, 
    SInt32 refcon
);

You would declare your function like this if you were to name it MySCModalHookCallback:

SInt16 MySCModalHookCallback (
    DialogRef theDialog, 
    SInt16 itemHit, 
    void *params, 
    SInt32 refcon
);
theDialog
itemHit
params
refcon

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 5/10/2000)